Overload | Description |
---|---|
BeInAscendingOrder<TSelector>(Expression<Func<T,TSelector>>,String,Object[]) | Asserts that a collection is ordered in ascending order according to the value of the specified propertyExpression. |
BeInAscendingOrder(IComparer<T>,String,Object[]) | Asserts that a collection is ordered in ascending order according to the value of the specified IComparer implementation. |
BeInAscendingOrder<TSelector>(Expression<Func<T,TSelector>>,IComparer<TSelector>,String,Object[]) | Asserts that a collection is ordered in ascending order according to the value of the specified propertyExpression and IComparer implementation. |
BeInAscendingOrder(String,Object[]) | Expects the current collection to have all elements in ascending order. Elements are compared using their System.IComparable.CompareTo(System.Object) implementation. |
BeInAscendingOrder(Func<T,T,Int32>,String,Object[]) | Expects the current collection to have all elements in ascending order. Elements are compared using the given lambda expression. |